Stored Procedures [dbo].[BAEOrderCategoryParentLookupInsert]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@OrderCategoryIDint4
@OrderCategoryParentIDint4
SQL Script
create procedure [dbo].[BAEOrderCategoryParentLookupInsert] @OrderCategoryID as
int,
    @OrderCategoryParentID AS int
AS
    INSERT INTO OrderCategoryParentLookup
    (    
    OrderCategoryID,            
    OrderCategoryParentID        
    )
    VALUES
    (    
    @OrderCategoryID,            
    @OrderCategoryParentID                                                                    
    );

GO
Uses